86c745a63214dd3df4e6dddc7447005b1a756c6e,esper/src/main/java/com/espertech/esper/epl/agg/service/AggSvcGroupByLocalGroupBy.java,AggSvcGroupByLocalGroupBy,setCurrentAccess,#Object#number#AggregationGroupByRollupLevel#,41
Before Change
}
if (currentAggregatorMethods == null) {
currentAggregatorMethods = methodResolutionService.newAggregators(localGroupByPlan.getAllLevels()[0].getMethodFactories(), agentInstanceId, groupByKey, null, null);
currentAggregatorStates = methodResolutionService.newAccesses(agentInstanceId, isJoin, localGroupByPlan.getAllLevels()[0].getStateFactories(), groupByKey, null, null, null);
}
}
After Change
}
if (currentAggregatorMethods == null) {
currentAggregatorMethods = AggSvcGroupByUtil.newAggregators(localGroupByPlan.getAllLevels()[0].getMethodFactories());
currentAggregatorStates = AggSvcGroupByUtil.newAccesses(agentInstanceId, isJoin, localGroupByPlan.getAllLevels()[0].getStateFactories(), groupByKey, null);
}
}